home *** CD-ROM | disk | FTP | other *** search
- onClipEvent(enterFrame){
- if(_name != "bullet2")
- {
- _X = _X + xv;
- _Y = _Y + yv;
- if(_X < 0 || 300 < _X || _Y < 0 || 300 < _Y)
- {
- removeMovieClip(this);
- }
- if(this.hitTest(_root.ship) && _root.shippause == 0 && _root.shield == 0)
- {
- _root.ship._alpha = 0;
- _root.explosioncount = _root.explosioncount + 1;
- duplicateMovieClip(_root.explosion,"explosion" + _root.explosioncount,16384 + _root.explosioncount);
- setProperty("_root.explosion" + _root.explosioncount, _X, _root.ship._x);
- setProperty("_root.explosion" + _root.explosioncount, _Y, _root.ship._y);
- if(_root.explosioncount >= 4070)
- {
- _root.explosioncount = 4050;
- }
- _root.shipcount--;
- _root.dragger._y = -150;
- _root.ship._y = -150;
- _root.displaycount = 0;
- removeMovieClip(this);
- }
- }
- else
- {
- _X = -150;
- }
- }
-